Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | import React, { Component } from "react" |
||
6 | |||
7 | class SearchPage extends Component { |
||
8 | render() { |
||
9 | return ( |
||
10 | <Layout> |
||
11 | <SEO lang="nl-BE" title="Zoeken" description="Zoekpagina KCVV Elewijt" path={this.props.location.pathname} /> |
||
12 | |||
13 | <div className={`limited-width_wrapper`}> |
||
14 | <h1>Zoeken</h1> |
||
15 | |||
16 | <Search /> |
||
17 | </div> |
||
18 | </Layout> |
||
19 | ) |
||
24 |